home *** CD-ROM | disk | FTP | other *** search
/ Programming a Multiplayer FPS in DirectX / Programming a Multiplayer FPS in DirectX (Companion CD).iso / Paint Shop Pro / PSP900enTR.exe / Data1.cab / _946D65819A4C43FEB40A57F63BD9B73D < prev    next >
Encoding:
Text File  |  2004-08-16  |  852 b   |  33 lines

  1.  
  2. from JascApp import *
  3.  
  4. def ScriptProperties():
  5.     return {
  6.         'Author': u'Jasc Software, Inc.',
  7.         'Copyright': u'Copyright (c) 2003-2004 Jasc Software, Inc.  All rights reserved.',
  8.         'Description': 'Factory default preset for InnerBevel effect',
  9.         'Host': 'Paint Shop Pro 8',
  10.         'Host Version': '8.00',
  11.         }
  12.  
  13. def Preset_InnerBevel():
  14.     return {
  15.         'Bevel': 0,
  16.         'Angle': 315,
  17.         'Color': (255, 255, 255),
  18.         'GeneralSettings': {
  19.             'AutoActionMode': 0,
  20.             'ExecutionMode': 0
  21.             },
  22.         'Intensity': 50,
  23.         'Shininess': 0,
  24.         'Width': 8,
  25.         'Depth': 20,
  26.         'Ambience': 0,
  27.         'Elevation': 30,
  28.         'Smoothness': 0
  29.         }
  30.  
  31. def Do(Environment):
  32.     App.Do( Environment, 'InnerBevel', Preset_InnerBevel())
  33.